home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / doom / dme4bt13.zip / SETUP.TXT < prev    next >
Text File  |  1996-02-16  |  4KB  |  72 lines

  1. Installation and setup of DMapEdit
  2. ----------------------------------
  3.  
  4. To install DMapEdit at the location of you choice, simply copy all the files
  5. to the directory of your choice (or unzip the zip file in the directory of
  6. your choice).  Which directory you choose is up to you, however all of the
  7. required files must be placed in the same directory (don't put half in one
  8. directory and the other half somewhere else basically).
  9.  
  10. You can put DMapEdit in the same directory with Doom and/or Doom II if you
  11. want.  If you decide not to, however, you will need to tell DMapEdit where
  12. it can find the files for these games (Or more specifically, the IWADs.
  13. These are the files 'doom.wad' and 'doom2.wad').  There are 2 ways you can
  14. do this.  The first is by using command line switches:
  15.  
  16. dmapedit -ic:\doom                 For Doom
  17. dmapedit -i2c:\doom2               For Doom II
  18. dmapedit -ic:\doom -i2c:\doom2     If you have both Doom and Doom II
  19.  
  20. If you decide on this method, making a batch file to handle this, and placing
  21. that batch file somewhere in DOS's search path would be a good idea.  Even if
  22. you decide not to do it this way, it would still be a good idea to write a
  23. batch file to run DMapEdit, which will be explained below.
  24.  
  25. The second way to specify the paths to Doom and Doom II's IWADs is within the
  26. dmapedit.ini file.  To do so, use a ASCII text editor (such as MS-DOS's
  27. 'edit' command) to change the following 2 lines in the dmapedit.ini file:
  28.  
  29. *doom path = c:\doom
  30. *doom 2 path = c:\doom2
  31.  
  32. Change them so that they point to the proper directories (or the IWAD
  33. file itself, if you wish), and remove the '*' in front of the Doom's you
  34. have.  This '*' in front makes it a comment, which is skipped.  So,
  35. removing them will allow these settings to be used by DMapEdit.  You are
  36. also free to change any other setting within this file to your taste.
  37.  
  38. That is all there is to setup, as long as you run DMapEdit from the directory
  39. you installed DMapEdit.  If you wish to run it from anywhere, you will need
  40. to continue on with the next section.
  41.  
  42. -- More advanced setup --
  43.  
  44. DMapEdit can be run from places other than where it is installed.  For
  45. example, say you installed DMapEdit in 'c:\dme\' and have Doom in 'c:\doom\'
  46. and have all your PWADs in 'd:\pwads\'.  You may wish to run DMapEdit while
  47. you are in the 'd:\pwads\' directory, so DMapEdit will attempt to load pwads
  48. from there instead.  With the DJGPP compiled version of DMapEdit (which
  49. starting with v4.0 beta 5 or so it has always been) it can't tell where it
  50. was run from any longer, unlike the Borland C compiled version.  Thus, a
  51. command line switch was added to allow you to tell DMapEdit where it is
  52. installed at.  Thus, it is recommended to use a batch file to run DMapEdit
  53. instead of adding DMapEdit's directory into your 'paths' environment variable.
  54. Assuming you installed DMapEdit in 'c:\dme\', your batch file would look like
  55. so..
  56.  
  57. c:\dme\dmapedit.exe -d c:\dme %1 %2 %3 %4 %5 %6 %7 %8 %9
  58.  
  59. Because you may be running this batch file from anywhere on your system, you
  60. need to specify the full path of the file you wish to run, which is what the
  61. first part is.  The '-d' switch indicates the next part will be the path of
  62. DMapEdit's files (or instillation directory, in other words).  By the way,
  63. parts are seperated by spaces, as long as there isn't a '\' in front of the
  64. space, in which case the space and next part will become part of the current
  65. part.  Follow that? :)
  66.  
  67. The remaining '%X' (X being a number) parts simply pass the command line
  68. that was passed to the batch file on to DMapEdit.  Thus, you only need to put
  69. what you need every time in here (and thus won't need to type it out every
  70. time you run DMapEdit).  You can use other switches and whatnot as the need
  71. arrises by passing them to the batch file as you run it.  For a full list of
  72. command line options available, run DMapEdit with the '-?' switch.